net/http.http2writeQueue.nextQueue (field)

12 uses

	net/http (current package)
		h2_bundle.go#L11321: 	nextQueue []http2FrameWriteRequest
		h2_bundle.go#L11328: 	return (len(q.currQueue) - q.currPos + len(q.nextQueue)) == 0
		h2_bundle.go#L11332: 	q.nextQueue = append(q.nextQueue, wr)
		h2_bundle.go#L11340: 		q.currQueue, q.currPos, q.nextQueue = q.nextQueue, 0, q.currQueue[:0]
		h2_bundle.go#L11352: 	if len(q.nextQueue) > 0 {
		h2_bundle.go#L11353: 		return &q.nextQueue[0]
		h2_bundle.go#L11387: 	for i := range q.nextQueue {
		h2_bundle.go#L11388: 		q.nextQueue[i] = http2FrameWriteRequest{}
		h2_bundle.go#L11391: 	q.nextQueue = q.nextQueue[:0]